
.phone-icon {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #0b5ed7;
  font-size: 1.6rem;
  color: white;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999999; /* VERY HIGH — will stay above everything */
  text-decoration: none;
  animation: slideUp 0.8s ease-out 1s forwards,
    pulseAttention 2s ease-in-out 4s infinite;
}

/* Sticky WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  font-size: 1.6rem;
  color: white;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999999; /* VERY HIGH — will stay above everything */
  text-decoration: none;
  animation: slideUp 0.8s ease-out 1s forwards,
    pulseAttention 2s ease-in-out 4s infinite;
}

.phone-icon:hover,
.whatsapp-icon:hover {
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


@keyframes pulseAttention {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

